home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 2000 July / macformat-092.iso / Fireworks 3 / Settings / Commands / Document / Lock Other Layers.jsf < prev    next >
Encoding:
Text File  |  1999-11-19  |  428 b   |  16 lines

  1. // Copyright (c) 1999 Macromedia. All rights reserved.
  2.  
  3. // Get the Current Layer
  4. var currentLayer = fw.getDocumentDOM().currentLayerNum;
  5.  
  6. // Lock all of the Layers
  7. var numberLayers = fw.getDocumentDOM().layers.length;
  8.  
  9. for (count = 0 ; count < numberLayers ; count++)
  10. {
  11.     fw.getDocumentDOM().setLayerLocked(count, 0, true, false);
  12. }
  13.  
  14. // Unlock the Current Layer
  15. fw.getDocumentDOM().setLayerLocked(currentLayer, 0, false, false);
  16.